home *** CD-ROM | disk | FTP | other *** search
/ FM Towns: Free Software Collection 7 / FM Towns Free Software Collection 7.iso / ms_dos / dmove86 / escseq.h < prev    next >
Text File  |  1993-11-30  |  291b  |  17 lines

  1. /*
  2.  
  3. escseq.h  -- 画面制御マクロ
  4.  
  5. */
  6.  
  7. #ifndef    ESCSEQ_H
  8.  
  9. #define    ESCSEQ_H
  10.  
  11. #define    COLOR(for,back)    printf("\033[%d;%dm",(for)+30,(back)+40)
  12. #define    CLS()        printf("\033[2J")
  13. #define    LOCATE(x,y)    printf("\033[%d;%df",(y)+1,(x)+1)
  14. #define    CURSOR(a)    printf("\033[%dv",(a))
  15.  
  16. #endif
  17.